home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / apt-xapian-index / plugins / descriptions.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2009-10-28  |  4KB  |  99 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.6)
  3.  
  4. import apt
  5. import xapian
  6. import re
  7. import os
  8. import os.path as os
  9.  
  10. class Descriptions:
  11.     
  12.     def info(self):
  13.         '''
  14.         Return general information about the plugin.
  15.  
  16.         The information returned is a dict with various keywords:
  17.  
  18.          timestamp (required)
  19.            the last modified timestamp of this data source.  This will be used
  20.            to see if we need to update the database or not.  A timestamp of 0
  21.            means that this data source is either missing or always up to date.
  22.          values (optional)
  23.            an array of dicts { name: name, desc: description }, one for every
  24.            numeric value indexed by this data source.
  25.  
  26.         Note that this method can be called before init.  The idea is that, if
  27.         the timestamp shows that this plugin is currently not needed, then the
  28.         long initialisation can just be skipped.
  29.         '''
  30.         file = apt.apt_pkg.Config.FindFile('Dir::Cache::pkgcache')
  31.         return dict(timestamp = os.path.getmtime(file))
  32.  
  33.     
  34.     def init(self, info, progress):
  35.         '''
  36.         If needed, perform long initialisation tasks here.
  37.  
  38.         info is a dictionary with useful information.  Currently it contains
  39.         the following values:
  40.  
  41.           "values": a dict mapping index mnemonics to index numbers
  42.  
  43.         The progress indicator can be used to report progress.
  44.         '''
  45.         self.stemmer = xapian.Stem('english')
  46.         self.indexer = xapian.TermGenerator()
  47.         self.indexer.set_stemmer(self.stemmer)
  48.  
  49.     
  50.     def doc(self):
  51.         '''
  52.         Return documentation information for this data source.
  53.  
  54.         The documentation information is a dictionary with these keys:
  55.           name: the name for this data source
  56.           shortDesc: a short description
  57.           fullDoc: the full description as a chapter in ReST format
  58.         '''
  59.         return dict(name = 'Package descriptions', shortDesc = "terms extracted from the package descriptions using Xapian's TermGenerator", fullDoc = "\n            The Descriptions data source simply uses Xapian's TermGenerator to\n            tokenise and index the package descriptions.\n\n            Currently this creates normal terms as well as stemmed terms\n            prefixed with ``Z``.\n            ")
  60.  
  61.     
  62.     def index(self, document, pkg):
  63.         '''
  64.         Update the document with the information from this data source.
  65.  
  66.         document  is the document to update
  67.         pkg       is the python-apt Package object for this package
  68.         '''
  69.         self.indexer.set_document(document)
  70.         self.indexer.index_text_without_positions(pkg.name)
  71.         version = pkg.candidate
  72.         if version is not None:
  73.             self.indexer.index_text_without_positions(version.raw_description)
  74.         
  75.  
  76.     
  77.     def indexDeb822(self, document, pkg):
  78.         '''
  79.         Update the document with the information from this data source.
  80.  
  81.         This is alternative to index, and it is used when indexing with package
  82.         data taken from a custom Packages file.
  83.  
  84.         document  is the document to update
  85.         pkg       is the Deb822 object for this package
  86.         '''
  87.         self.indexer.set_document(document)
  88.         self.indexer.index_text_without_positions(pkg['Package'])
  89.         self.indexer.index_text_without_positions(pkg['Description'])
  90.  
  91.  
  92.  
  93. def init():
  94.     '''
  95.     Create and return the plugin object.
  96.     '''
  97.     return Descriptions()
  98.  
  99.